*{
	margin: 0;
	padding: 0;
	font-family: rale;
}
p{
	color: black;
}

/*MENU*/
.ancho {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
  }
  
  .logo {
    width: 100px;
    height: 100px;
    margin-right: 20px;
  }
  
  .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
  }
  
  nav li {
    margin-right: 20px;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: #ccc;
  }
  
  nav a.active {
    color: #57b846;
  }

/*Fin de Menu*/

/*Bienvenidos*/
.bienvenidos {
    padding: 50px 0;
    text-align: center;
  }
  
  .mision-vision {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
  }
  
  .mision,.vision {
    width: 45%;
    margin: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .mision img,.vision img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  
  .mision p,.vision p {
    font-size: 18px;
    line-height: 1.6;
  }
  /*Fin de Bienvenidos*/

  /*nuestra historia*/
  .banner-1 {
	background-color: #ffffff;
	color: #fff;
	padding: 20px 0;
	text-align: center;
  }
  
  .contenedor-columnas2 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding: 20px;
  }
  
  .titulo {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
  }
  
  .historia {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 20px;
  }
  
  .historia p {
	margin-bottom: 20px;
  }
  /*Fin de nuestra historia*/

 
/*estilo de las tablas de los centros de acopio*/
table{
	text-align: center;
	
}

table {
	font-family: arial, sans-serif;
	border-collapse: collapse;
	width: 100%;
  }
  
  td, th {
	border: 1px solid #dddddd;
	text-align: left;
	padding: 8px;
  }
  
  tr:nth-child(even) {
	background-color: #dddddd;
  }

  .contenedor_mapa{
	display: flex;
  }

/*banners de los centros de acopios y demas*/
.banner {
	background-color: #0cc0189f;
	color: #fff;
	padding: 20px 0;
	text-align: center;
  
  }


  .banner:hover {
    background-color: #09bbbe; /* Color cuando se pasa el cursor */
  }

  /*boton*/
  .button {
    /* Tamaño y forma del botón */
    width: 150px;
    height: 40px;
    border-radius: 5px;
  
    /* Color de fondo y texto */
    background-color: #4CAF50;
    color: #ffffff;
  
    /* Estilos de fuente */
    font-size: 16px;
    font-weight: bold;
  
    /* Espacio entre el texto y el borde */
    padding: 10px 20px;
  
    /* Sombra y efecto hover */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
  
    /* Efecto hover */
    &:hover {
      background-color: #3e8e41;
    }
  }